home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / MATHS / RLAB / RLAB125.ZIP / !RLaB / help_ai / backsub < prev    next >
Text File  |  1994-09-05  |  645b  |  26 lines

  1. backsub:
  2.  
  3. Syntax:    backsub ( LIST, B )
  4.  
  5. Description:
  6.  
  7.     The backsub function computes the solution to the set of
  8.     linear equations described by:
  9.  
  10.         A * X = B
  11.  
  12.     The 1st argument to backsub (LIST) is the result from
  13.     `factor(A)'. The second argument to backsub is the matrix B. B
  14.     can contain multiple right hand sides.
  15.  
  16.     Backsub returns a matrix X which contains the solution(s) to
  17.     the aforementioned equations.
  18.  
  19.     Backsub utilizes the LAPACK subroutines DGETRS or ZGETRS if
  20.     LIST contains LU factors or LAPACK subroutins DSYTRS or ZHETRS
  21.     if LIST contains the LDL factors.
  22.  
  23.     Example:    X = backsub (factor (A), B);
  24.  
  25. See Also: factor, inv, lu, solve
  26.